home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000824-20010305 / 000338_news@columbia.edu _Thu Feb 22 10:16:27 2001.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by monire.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id KAA06410
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Thu, 22 Feb 2001 10:16:27 -0500 (EST)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA02079
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 22 Feb 2001 10:16:26 -0500 (EST)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id KAA24644
  10.     for kermit.misc@watsun.cc.columbia.edu; Thu, 22 Feb 2001 10:15:11 -0500 (EST)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: fdc@columbia.edu (Frank da Cruz)
  13. Subject: Re: PC FTP Client supporting OS9/OS9000.
  14. Date: 22 Feb 2001 15:15:09 GMT
  15. Organization: Columbia University
  16. Message-ID: <973adt$o21$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <3a952799@aston-server2.astondes.com>,
  20. Andrew Guy <andyg@astondes.com> wrote:
  21. : I'm trying to transfer files from 68k machines running OS9 to PowerPC
  22. : machines running OS9000.
  23. : At present we have no network file manager in place, so a straight copy is
  24. : not possible.
  25. : Command line FTP is operational, but there is no recursive option on
  26. : mput/mget, and we need to copy multiple files and directories.
  27. : I have tried various FTP clients on my PC (running Windows 2000) but none of
  28. : them correctly read the file/directory information from the OS9/OS9000
  29. : machines.
  30. FTP protocol does not provide any method for doing recursive file transfers.
  31. However, *some* FTP clients and servers do it anyway via a ruse, if they
  32. both use the same ruse (client says NLST *, server sends a recursive list,
  33. client recognizes the list as recursive, and does the required directory
  34. creating/changing on the fly while downloading).
  35.  
  36. One client that does this is the new, scriptable C-Kermit 7.1 FTP client:
  37.  
  38.   http://www.columbia.edu/kermit/ftpclient.html
  39.  
  40. It hasn't been built for OS-9 yet, but it works fine in UNIX, so it would
  41. be good if some kind soul in the OS-9 developer community would build it
  42. there:
  43.  
  44.   http://www.columbia.edu/kermit/ck71.html
  45.  
  46. The next release Kermit 95 (for Windows 95/98/ME/NT/2000) will also include
  47. the same FTP client.
  48.  
  49. - Frank